home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / egebook.lha / ege.book / 9 / input.C < prev    next >
C/C++ Source or Header  |  1992-06-04  |  312b  |  13 lines

  1. // illustrates stream input
  2.  
  3. #include <iostream.h>
  4.  
  5. main(){
  6.    int i;         // integer variable i
  7.  
  8.    cout << "How old are you ? ";
  9.    cin >> i;                   // converts user response into integer
  10.                                // and assigns it to variable i
  11.    cout << "I am " << i << " years old\n";
  12. }
  13.